home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_098 / thai / mklower.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  135b  |  14 lines

  1.  
  2. #include <stdio.h>
  3. #include <ctype.h>
  4.  
  5.  
  6. int
  7. mklower ( c )
  8. int c;
  9. {
  10.     if ( isupper ( c ) )
  11.         return ( tolower ( c ) );
  12.     return ( c );
  13. }
  14.